home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Utility Library / Interfaces / Q3UL_QD3DUtils.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  768 b   |  31 lines  |  [TEXT/CWIE]

  1. /*
  2.  *
  3.  * QuickDraw 3D code for a utility library.
  4.  *
  5.  * This file contains interfaces to an amalgamation of code 
  6.  * that has been useful for QuickDraw 3D sample apps.
  7.  *
  8.  * Nick Thompson, nickt@apple.com
  9.  * Send bug reports and feedback to devsupport@apple.com.
  10.  *
  11.  * ©1997 Apple Computer Inc, All Rights Reserved 
  12.  *
  13.  * Modification History:
  14.  *
  15.  */
  16.  
  17. #ifndef _Q3UL_UTILS_
  18. #define _Q3UL_UTILS_
  19.  
  20. #include "Q3UL.h"
  21. #include "QD3D.h"
  22. #include "QD3DCamera.h"
  23. #include "QD3DGroup.h"
  24. #include "QD3DView.h"
  25.  
  26. TQ3ViewObject             Q3UL_NewView( TQ3UL_WindowRef theWindow ) ;
  27. TQ3DrawContextObject    Q3UL_NewMacintoshDrawContext( TQ3UL_WindowRef theWindow ) ;
  28. TQ3CameraObject         Q3UL_NewCamera( TQ3UL_WindowRef theWindow ) ;
  29. TQ3GroupObject             Q3UL_NewDefaultLightGroup( void ) ;
  30.  
  31. #endif